:root {
	--blue: #0061ae;
	--lighten-blue: #6194c6;
	--white: #ffffff;
	--black: #1b1b1b;
	--deep-grey: #303030;
	--mid-grey: #969696;
	--lighten-grey: #cccccc;
	--copy-grey: #a6a6a6;
	--bg: #f6f6f6;
	--blue-bg: #0456a2;
	--border: #e5e5e5;
}

@font-face {
	font-family: "AVGARDD";
	src: url("../fonts/AVGARDD.woff2") format("woff2"),
		url("../fonts/AVGARDD.woff") format("woff"),
		url("../fonts/AVGARDD.ttf") format("truetype"),
		url("../fonts/AVGARDD.eot") format("embedded-opentype"),
		url("../fonts/AVGARDD.svg") format("svg");
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: "AVGARDDO";
	src: url("../fonts/AVGARDDO.woff2") format("woff2"),
		url("../fonts/AVGARDDO.woff") format("woff"),
		url("../fonts/AVGARDDO.ttf") format("truetype"),
		url("../fonts/AVGARDDO.eot") format("embedded-opentype"),
		url("../fonts/AVGARDDO.svg") format("svg");
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: "AVGARDN";
	src: url("../fonts/AVGARDN.woff2") format("woff2"),
		url("../fonts/AVGARDN.woff") format("woff"),
		url("../fonts/AVGARDN.ttf") format("truetype"),
		url("../fonts/AVGARDN.eot") format("embedded-opentype"),
		url("../fonts/AVGARDN.svg") format("svg");
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: "AVGARDNI";
	src: url("../fonts/AVGARDNI.woff2") format("woff2"),
		url("../fonts/AVGARDNI.woff") format("woff"),
		url("../fonts/AVGARDNI.ttf") format("truetype"),
		url("../fonts/AVGARDNI.eot") format("embedded-opentype"),
		url("../fonts/AVGARDNI.svg") format("svg");
	font-weight: normal;
	font-style: normal;
}

* {
	transition: .5s;
}

body {
	background-color: var(--bg);
	font-family: AVGARDN;
}

img {
	max-width: 100%;
}

a,
a:hover {
	text-decoration: none;
}

.clearfix::after {
	content: "";
	display: block;
	height: 0;
	clear: both;
}

.text-center {
	text-align: center;
}

.text-bold {
	font-family: AVGARDD;
}

.whitebg {
	background-color: var(--white);
}

.container {
	width: 1200px;
}

/**
 * swiper
**/
.swiper-slide a {
	color: var(--deep-grey);
}

.swiper-button-next,
.swiper-button-prev {
	width: 40px;
	height: 40px;
	line-height: 40px;
	background: rgba(255, 255, 255, .8);
	background-image: none;
	border: 1px solid var(--border);
	color: var(--lighten-grey);
	top: 38%;
	text-align: center;
	font-size: 16px;
	outline: none;
	border-radius: 50%;
}

.swiper-button-prev {
	left: -10px;
}

.swiper-button-next {
	right: -10px;
}

/**
 * header
**/
.header {
	position: relative;
	padding: 0 60px;
	/* border: 1px solid var(--border); */
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	width: 100%;
	z-index: 99;
	transition: .5s;
}

.header.fixed {
	position: fixed;
	top: 0;
}

.header-functional,
.logo {
	float: left;
}

.navigation,
.search {
	float: right;
}

.logo {
	padding: 20px 0;
}

.header-functional {
	position: relative;
	width: calc(100% - 50px);
}

.header-functional .menu-btn .btn-line {
	padding-top: 15px;
	width: 20px;
}

.header-functional .menu-btn .btn-line span {
	display: block;
	width: 100%;
	height: 2px;
	margin-bottom: 5px;
	background-color: #333333;
}

.header-functional.open .menu-btn .btn-line span:nth-of-type(1) {
	transform: rotate(45deg) translateX(5px) translateY(10px);
}

.header-functional.open .menu-btn .btn-line span:nth-of-type(2) {
	transform: scaleX(0);
}

.header-functional.open .menu-btn .btn-line span:nth-of-type(3) {
	transform: rotate(-45deg) translateX(0px) translateY(-5px);
}

.header-functional ul.navigation {
	list-style: none;
	margin: 0;
}

.header-functional ul.navigation li {
	position: relative;
	display: inline-block;
	padding: 20px 0;
}

.header-functional ul.navigation li.lang span {
	border: 1px solid var(--mid-grey);
	border-top: 0;
	border-left: 0;
	width: 10px;
	height: 10px;
	display: inline-block;
	transform: rotate(45deg) translateY(-2px);
	margin-left: 5px;
}

.header-functional ul.navigation li a {
	width: 100%;
	line-height: 50px;
	font-size: 16px;
	color: var(--deep-grey);
	padding: 0 15px;
}

.header-functional ul.navigation li a.no-expand span {
	display: none;
}

.header-functional ul.navigation li a:hover {
	color: var(--blue);
}

.header-functional ul.navigation li ul.subnav {
	position: absolute;
	top: 90px;
	padding: 0;
	width: 200px;
	border-top: 3px solid var(--blue);
	background-color: var(--white);
	z-index: 8;
	display: none;
}

.header-functional ul.navigation li.lang ul.subnav {
	width: 100%;
}

.header-functional ul.navigation li:hover ul.subnav {
	display: block;
}

.header-functional ul.navigation li ul.subnav li {
	display: block;
	width: 100%;
	padding: 0 10px;
}

.header-functional ul.navigation li ul.subnav li:hover {
	background-color: var(--border);
}

.header-functional ul.navigation li ul.subnav li a {
	display: block;
	width: 100%;
	padding: 0 10px;
	line-height: 40px;
	text-transform: capitalize;
	transition: .5s;
}

.header-functional ul.navigation li.lang ul.subnav li a {
	padding: 0;
}

.header-functional ul.navigation li ul.subnav li:hover a {
	margin-left: 20px;
}

.header-functional ul.navigation li.lang ul.subnav li:hover a {
	margin-left: 0;
	color: var(--blue);
}

.search {
	width: 50px;
	line-height: 40px;
	text-align: center;
	padding: 30px 0 20px;
	color: var(--deep-grey);
	font-size: 16px;
}

.search::before {
	content: "|";
	color: var(--lighten-grey);
	padding-right: 15px;
}

.search-layer {
	display: none;
	position: absolute;
	top: 90px;
	left: 0;
	width: 100%;
	padding: 20px 0;
	border-top: 3px solid var(--blue);
	background: var(--bg);
	z-index: 5;
}

.search-layer .form-group {
	width: calc(100% - 120px);
	padding-right: 20px;
}

.search-layer .form-group input.keyword {
	width: 100%;
	height: 50px;
}

.search-layer .form-group input.keyword:focus {
	outline: none;
	box-shadow: none;
	border-color: var(--deep-grey);
}

.search-layer button,
.search-layer button:hover {
	width: 100px;
	height: 50px;
	background: var(--blue);
	border-color: var(--blue);
	color: var(--white);
	font-size: 20px;
}

.header.fixed .logo {
	padding: 10px 0;
}

.header.fixed .logo img {
	max-width: 200px;
}

.header.fixed .header-functional ul.navigation li {
	padding: 5px 0;
}

.header.fixed .header-functional .menu-btn {
	padding-top: 10px;
}

.header.fixed .header-functional ul.navigation li ul.subnav,
.header.fixed .search-layer {
	top: 60px;
}

.header.fixed .header-functional ul.navigation li ul.subnav li {
	padding: 0 10px;
}

.header.fixed .search {
	padding: 15px 0 0;
}

/**
 * scroll-banner
**/
.scroll-banner {
	/* padding-bottom: 50px; */
	position: relative;
}

.scroll-banner .swiper-button-prev,
.scroll-banner .swiper-button-next {
	top: 50%;
}

.scroll-banner .swiper-button-prev {
	left: 20px;
}

.scroll-banner .swiper-button-next {
	right: 20px;
}

.scroll-banner .swiper-ad {
	position: absolute;
	left: 10%;
	top: 20%;
	/* transform: translateY(-50%); */
}

.scroll-banner .swiper-ad .ad-title {
	width: 60%;
	font-size: 60px;
	line-height: 60px;
}

.scroll-banner .swiper-ad .ad-subtitle {
	font-size: 26px;
	line-height: 30px;
	color: var(--mid-grey);
	margin-top: 30px;
}

.scroll-banner .swiper-ad .arrow-right {
	margin-top: 50px;
}

.scroll-banner .swiper-ad .arrow-right img {
	max-width: 30px;
}

.swiper-container-horizontal>.swiper-pagination-bullets {
	text-align: left;
	left: 10%;
	bottom: 100px;
}

.swiper-pagination-bullet {
	background: none;
	color: var(--black);
	opacity: .5;
	font-size: 18px;
}

.swiper-pagination-bullets .pagination-li {
	display: inline-block;
	width: 30px;
	height: 30px;
	overflow: hidden;
	padding: 0;
	line-height: 30px;
	transition: .5s;
}

.swiper-pagination-bullets .pagination-li.swiper-pagination-bullet-active {
	width: auto;
}

.swiper-pagination-bullets .pagination-li span,
.swiper-pagination-bullet .pagination-li img {
	display: inline-block;
}

.swiper-pagination-bullets .pagination-li img {
	max-width: 20px;
	margin-left: 10px;
	margin-right: 10px;
}

.swiper-pagination-bullet-active {
	background: none;
	color: var(--blue);
}

/**
 * header-banner
**/
.header-banner {
	position: relative;
	height: 500px;
}

.header-banner img {
	width: 100%;
}

.header-banner .group-title {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
	width: 100%;
}

.header-banner .group-title .uppercase-title {
	font-size: 50px;
	text-transform: uppercase;
	color: var(--white);
}

.header-banner .group-title .title-line {
	width: 80px;
	height: 2px;
	background: var(--white);
	margin: 20px auto 0;
}

/**
 * hot-product
**/
.hot-product {
	margin-top: 20px;
	background: url(../images/bg1.jpg) no-repeat top center;
	background-size: 100% 545px;
}

.hot-product .layer {
	height: 260px;
	overflow: hidden;
}

.hot-product .layer1 {
	height: 180px;
	overflow: hidden;
}

.hot-product .layer2 {
	height: 205px;
	overflow: hidden;
}

.hot-product .layer3 {
	height: 243px;
	overflow: hidden;
}

.hot-product img {
	width: 100%;
}

.hot-product .hot-section {
	padding-top: 25px;
	/* position: absolute;
	top: 60px;
	left: 50%;
	transform: translateX(-50%); */
}

.hot-product .hot-section-line {
	width: 30px;
	height: 5px;
	margin-left: -30px;
	margin-bottom: 20px;
	background: var(--white);
}

.hot-product .hot-section-name {
	/* background: var(--blue); */
	height: 100%;
	padding: 35px 0 30px 30px;
	font-size: 36px;
	color: var(--white);
	line-height: 40px;
	text-transform: uppercase;
}

.hot-product .hot-section-name span {
	display: block;
}

.hot-product .hot-section-product1 {
	height: 100%;
	background: #508ec4;
	padding: 0;
}

.hot-product .hot-section-product1 a {
	display: block;
	padding: 20px 0 0 30px;
	color: var(--white);
}

.hot-product .hot-section-product1 a .title {
	font-size: 28px;
}

.hot-product .hot-section-product1 a .desc {
	width: 45%;
}

.hot-product .hot-section-product1 a .arrow {
	padding-top: 10px;
	padding-bottom: 10px;
}

.hot-product .hot-section-product1 a .arrow img {
	max-width: 30px;
}

.hot-product .hot-product1 {
	height: 100%;
	padding: 0;
	overflow: hidden;
}

.hot-product .hot-product1 img {
	display: block;
	max-width: 100%;
	transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}

.hot-product .hot-product1:hover img {
	transform: scale(1.08, 1.08);
}

.hot-product .no-padding {
	padding: 0;
}

.hot-product .hot-list {}

.hot-product .hot-list a {
	display: block;
	color: var(--white);
	background: rgba(255, 255, 255, .1);
}

.hot-product .hot-list a.black {
	color: var(--white);
	padding: 0 10% 0 5%;
	background-color: var(--blue);
}

.hot-product .hot-list a.black .arrow img {
	transform: rotate(180deg);
}

.hot-product .hot-list a.layer3 {
	background: #f2f2f2;
}

.hot-product .hot-list .layer img {
	transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}

.hot-product .hot-list .layer:hover img {
	transform: scale(1.08, 1.08);
}

.hot-product .hot-list .title {
	padding: 20px 0 0 30px;
	font-size: 28px;
}

.hot-product .hot-list .desc {
	padding-left: 30px;
	font-size: 16px;
}

.hot-product .hot-list .arrow {
	padding: 0 0 10px 15px;
}

.hot-product .hot-list .arrow img {
	max-width: 30px;
}

/**
 * index-news
**/
.channel-tabs {
	border-bottom: 1px solid var(--border);
}

.channel-tabs-title {
	font-size: 40px;
	color: var(--blue);
	text-transform: uppercase;
	padding: 20px 0;
	float: left;
}

.channel-tabs-list {
	float: right;
}

.channel-tabs-list a {
	display: inline-block;
	padding: 30px 10px;
	margin: 0 10px;
	line-height: 40px;
	text-transform: uppercase;
	font-size: 16px;
	color: var(--mid-grey);
	text-decoration: none;
}

.channel-tabs-list a:last-child {
	margin-right: 0;
}

.channel-tabs-list a.active,
.channel-tabs-list a:hover {
	color: var(--blue);
	border-bottom: 2px solid var(--blue);
}

.index-news {
	padding: 50px 0 0;
}


.index-news .news-item-list .news-item {
	/* float: left; */
	width: 100%;
	height: 0;
	overflow: hidden;
	visibility: hidden;
	opacity: 0;
}

.index-news .news-item-list .news-item.show {
	height: auto;
	padding: 40px 0;
	visibility: visible;
	opacity: 1;
}

.index-news .news-item-list .news-item a {
	display: block;
	width: 100%;
	padding: 20px 15px;
	background: var(--white);
	border-radius: 10px;
}

.index-news .news-item-list .news-item a p {
	overflow: hidden;
}

.index-news .news-item-list .news-item a p img {
	transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}

.index-news .news-item-list .news-item a:hover p img {
	transform: scale(1.08, 1.08);
}

.index-news .news-item-list .news-item a .date {
	font-size: 18px;
	color: var(--mid-grey);
}

.index-news .news-item-list .news-item a .title {
	font-size: 24px;
	color: var(--deep-grey);
	line-height: 30px;
	height: 60px;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	text-overflow: ellipsis;
	overflow: hidden;
	-webkit-box-orient: vertical;
	word-wrap: break-word;
	word-break: break-all;
}

.index-news .news-item-list .news-item a:hover .title {
	color: var(--blue);
}

.index-news .news-item-list .news-item a .desc {
	font-size: 18px;
	color: var(--mid-grey);
	line-height: 30px;
}

.index-news .news-item-list .news-item a .arrow {
	padding: 20px 0;
}

.index-news .news-item-list .news-item a .arrow img {
	max-width: 20px;
}

.index-news .news-item-list .news-item a:hover .arrow img {
	margin-left: 20px;
}

.index-news .swiper-button-next,
.index-news .swiper-button-prev {
	display: none;
}

/**
 * index-product
**/
.index-product {
	/* padding: 0 0 50px; */
}

.index-product .product-item-list .product-item {
	position: relative;
	height: 0;
	overflow: hidden;
}

.index-product .product-item-list .product-item.show-item {
	/* padding: 30px 0; */
	height: auto;
	padding: 40px 0;
}

.index-product .product-item-list .product-item a {
	display: block;
	width: 100%;
	box-shadow: 1px 2px 14px 0px rgba(221, 221, 221, 0.5294117647058824);
	border-radius: 10px;
	background: var(--white);
}

.index-product .product-item-list .product-item a .thumb {
	padding: 10px;
}

.index-product .product-item-list .product-item a .thumb img {
	display: block;
	margin: 0 auto;
	max-width: 250px;
	transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}

.index-product .product-item-list .product-item a:hover .thumb img {
	transform: scale(1.08, 1.08);
}

.index-product .product-item-list .product-item a .product-title {
	font-size: 20px;
	padding: 10px 20px;
	height: 40px;
	color: var(--deep-grey);
	margin-bottom: 0;
	/* background: var(--white); */
	transition: .5s;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	text-overflow: ellipsis;
	overflow: hidden;
	-webkit-box-orient: vertical;
	word-wrap: break-word;
	word-break: break-all;
}

.index-product .product-item-list .product-item a:hover .product-title {
	padding-left: 40px;
	color: var(--blue);
}

.index-product .product-item-list .product-item a .arrow {
	position: relative;
	/* background: var(--white); */
	padding-top: 10px;
	padding-bottom: 10px;
	/* border-bottom: 5px solid var(--blue); */
}

.index-product .product-item-list .product-item a .arrow:after {
	position: absolute;
	content: "";
	width: 0;
	height: 3px;
	left: 0;
	bottom: 0;
	background: var(--blue);
	transition: .5s;
}

.index-product .product-item-list .product-item a:hover .arrow:after {
	width: 100%;
}

.index-product .product-item-list .product-item a .arrow img {
	max-width: 20px;
	margin-left: 20px;
	transition: .5s;
}

.index-product .product-item-list .product-item a:hover .arrow img {
	margin-left: 40px;
}

.index-product .product-item-list .product-item .swiper-button-next,
.index-product .product-item-list .product-item .swiper-button-prev {
	top: 45%;
	border-radius: 50%;
}

.index-product .product-item-list .product-item .swiper-button-prev {
	left: 0;
}

.index-product .product-item-list .product-item .swiper-button-next {
	right: 0;
}

/**
 * index-bottom
**/
.index-bottom {
	/* padding: 30px 0; */
	background: var(--blue-bg) url(../images/bg2.jpg) no-repeat center center;
}

.index-bottom .item-bottom {
	display: flex;
	padding: 20px 0;
	border-right: 1px solid var(--lighten-blue);
	justify-content: center;
}

.index-bottom .item-bottom:last-child {
	border: none;
}

.index-bottom .icon,
.index-bottom .topic {
	float: left;
}

.index-bottom .icon img {
	display: block;
	margin: 0 auto;
	max-width: 50px;
}

.index-bottom .topic {
	font-size: 16px;
	line-height: 20px;
	color: var(--white);
	text-align: center;
	padding-top: 5px;
	text-align: left;
}

.index-bottom .topic p {
	margin-bottom: 0;
}

.index-bottom .topic p span.count {
	font-size: 20px;
}

/**
 * fixed-breadcrumbs
**/
.fixed-attr {
	perspective: 2000px;
	perspective-origin: top;
}

.fixed-breadcrumbs {
	margin-top: -60px;
	background: #ffffff;
	padding: 20px 50px 10px;
	box-shadow: 0 10px 20px 0 rgba(48, 49, 51, .1), 0 -10px 20px 0 rgba(48, 49, 51, .05)
}

.position-nav a {
	display: inline-block;
	text-transform: capitalize;
	font-size: 16px;
	color: var(--deep-grey);
}

.position-nav a:first-of-type::before {
	display: none;
}

.position-nav a::before {
	content: ">";
	padding: 0 10px;
	color: var(--mid-grey);
}

.fixed-tabs {
	display: table;
	margin: 20px auto 10px;
}

.fixed-tabs a {
	display: inline-block;
	font-size: 16px;
	color: var(--mid-grey);
	text-transform: capitalize;
	margin-bottom: 10px;
	/* padding: 10px 20px; */
}

.fixed-tabs a:first-of-type::before {
	display: none;
}

.fixed-tabs a::before {
	content: "|";
	padding: 0 10px;
	color: var(--mid-grey);
}

.fixed-tabs a:hover,
.fixed-tabs a.active {
	color: var(--blue);
}

/**
 * breadcrumbs
**/
.breadcrumbs {
	padding: 30px 0 0;
}

.breadcrumbs a {
	display: inline-block;
	text-transform: capitalize;
	font-size: 16px;
	color: var(--deep-grey);
}

.breadcrumbs a:last-child {
	/* color: var(--mid-grey); */
}

.breadcrumbs a:first-of-type::before {
	display: none;
}

.breadcrumbs a:last-child::before {
	/* color: var(--deep-grey); */
}

.breadcrumbs a::before {
	content: ">";
	padding: 0 10px;
	color: var(--mid-grey);
}

/**
 * menu-tab
**/
.menu-tab {
	border-bottom: 1px solid var(--border);
}

.menu-tab .menu-list {
	display: table;
	margin: 0 auto;
}

.menu-tab .menu-list.max {
	display: block;
}

.menu-tab .menu-list a {
	position: relative;
	display: inline-block;
	text-align: center;
	font-size: 18px;
	line-height: 40px;
	padding: 30px 35px;
	color: var(--mid-grey);
	text-transform: capitalize;
}

.menu-tab .menu-list a:hover,
.menu-tab .menu-list a.active {
	color: var(--blue);
}

.menu-tab .menu-list a:hover::after,
.menu-tab .menu-list a.active::after {
	content: "";
	position: absolute;
	left: 30px;
	bottom: 0;
	width: calc(100% - 60px);
	height: 2px;
	background: var(--blue);
}

.menu-tab .menu-list.max a {
	padding: 20px;
	width: 100%;
}

.menu-tab .menu-list.max a:hover::after,
.menu-tab .menu-list.max a.active::after {
	width: calc(100% - 20px);
	left: 10px;
}

.menu-tab .menu-list.max .swiper-slide.swiper-slide-active a {
	/* color: var(--blue); */
}

.menu-tab .menu-list.max .swiper-slide.swiper-slide-active a::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 2px;
	/* background: var(--blue); */
}

/**
 * main-content
**/
.main-content {
	padding: 40px 0 0;
}

/**
 * list-news
**/
.list-news .news-item {
	display: block;
	padding: 20px;
	margin-bottom: 50px;
	background: var(--white);
	border-radius: 10px;
}

.list-news .news-item .thumb {
	overflow: hidden;
}

.list-news .news-item .thumb img {
	display: block;
	width: 100%;
	max-width: 100%;
	transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}

.list-news .news-item:hover .thumb img {
	transform: scale(1.08, 1.08);
}

.list-news .news-item p.date {
	font-size: 16px;
	color: var(--mid-grey);
	margin: 10px 0;
}

.list-news .news-item p.title {
	font-size: 20px;
	color: var(--deep-grey);
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	text-overflow: ellipsis;
	overflow: hidden;
	-webkit-box-orient: vertical;
	word-wrap: break-word;
	word-break: break-all;
}

.list-news .news-item p.desc {
	font-size: 16px;
	line-height: 20px;
	height: 60px;
	color: var(--mid-grey);
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	text-overflow: ellipsis;
	-webkit-box-orient: vertical;
	word-wrap: break-word;
	word-break: break-all;
}

.list-news .news-item .arrow {
	margin-top: 20px;
}

.list-news .news-item .arrow img {
	max-width: 20px;
	transition: .5s;
}

.list-news .news-item:hover .arrow img {
	margin-left: 20px;
}

/**
 * list-video
**/
.list-video .video-item {
	display: block;
	padding: 20px;
	margin-bottom: 50px;
	background: var(--white);
	border-radius: 10px;
}

.list-video .video-item .thumb {
	position: relative;
	overflow: hidden;
}

.list-video .video-item .thumb img {
	display: block;
	width: 100%;
	max-width: 100%;
	transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}

.list-video .video-item .thumb .mask {
	position: absolute;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, .5);
	top: 0;
	left: 0;
}

.list-video .video-item .thumb .mask .play-btn {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 50px;
	height: 50px;
	line-height: 50px;
	text-align: center;
	color: var(--white);
	border: 1px solid var(--white);
	border-radius: 50%;
	font-size: 20px;
}

.list-video .video-item:hover .thumb img {
	transform: scale(1.08, 1.08);
}

.list-video .video-item p.date {
	font-size: 16px;
	color: var(--mid-grey);
	margin: 10px 0;
}

.list-video .video-item p.title {
	font-size: 20px;
	color: var(--deep-grey);
}

.list-video .video-item .arrow img {
	max-width: 20px;
	transition: .5s;
}

.list-video .video-item:hover .arrow img {
	margin-left: 20px;
}

/**
 * list-product
**/
.list-product .product-item {
	display: block;
	/* border: 1px solid var(--border); */
	margin-bottom: 50px;
	border-radius: 10px;
	background: var(--white);
	box-shadow: 1px 2px 14px 0px rgba(221, 221, 221, 0.5294117647058824);
}

.list-product .product-item .thumb {
	padding: 10px 20px;
	overflow: hidden;
}

.list-product .product-item .thumb img {
	transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}

.list-product .product-item:hover .thumb img {
	transform: scale(1.08, 1.08);
}

.list-product .product-item .product-name {
	font-size: 24px;
	padding: 10px 20px;
	margin: 1px;
	line-height: 30px;
	background: var(--white);
	color: var(--deep-grey);
	border-top: 1px solid var(--border);
	border-radius: 0 0 10px 10px;
	transition: .5s;
}

.list-product .product-item .product-name .title {
	text-align: center;
	height: 30px;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	text-overflow: ellipsis;
	overflow: hidden;
	-webkit-box-orient: vertical;
	word-wrap: break-word;
	word-break: break-all;
}

.list-product .product-item .product-name .arrow img {
	max-width: 20px;
}

.list-product .product-item:hover .product-name {
	padding-left: 30px;
	color: var(--blue);
}

/**
 * contact
**/
.contact {
	padding: 50px 0;
}

.contact-left {
	font-size: 28px;
	text-transform: uppercase;
}

.contact-right .contact-list {
	padding-bottom: 50px;
}

.contact-right .contact-list .contact-item {
	font-size: 28px;
	line-height: 30px;
	padding-top: 5px;
	padding-bottom: 50px;
}

.contact-right .contact-list .contact-item .line {
	height: 30px;
	border-bottom: 1px solid var(--border);
}

.contact-right .contact-list .contact-content {
	padding: 0 0 30px;
	line-height: 30px;
	font-size: 16px;
}

.contact-right .contact-list .contact-content .item-name {
	float: left;
	width: 60px;
	color: var(--mid-grey);
	text-transform: uppercase;
}

.contact-right .contact-list .contact-content .item-text {
	float: left;
	width: calc(100% - 60px);
	color: var(--deep-grey);
}

/**
 * about
**/
.about {
	padding-bottom: 30px;
}

.about p {
	/* padding: 30px 0;
	line-height: 30px;
	text-align: center; */
	color: var(--mid-grey);
	margin-bottom: 0;
}

.about p.line {
	padding-bottom: 40px;
	border-bottom: 1px solid var(--border);
}

.about .about-item {
	position: relative;
	width: 250px;
	height: 250px;
	margin: 30px auto;
	border: 1px solid var(--border);
	border-radius: 50%;
}

.about .about-item .about-item-content {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 100%;
	text-align: center;
}

.about .about-item .about-item-content img {
	display: block;
	margin: 0 auto;
}

.about .about-item .about-item-content p {
	font-size: 16px;
	color: var(--deep-grey);
	padding: 10px 0;
}

.about .about-philosophy {
	padding: 30px 0 50px;
	font-size: 28px;
	text-align: center;
	color: var(--deep-grey);
}

.about .about-scroll {
	padding: 30px 0;
}

.about .about-scroll p {
	font-size: 16px;
	color: var(--deep-grey);
}

.about p.showroom-text {
	padding: 20px 0;
	text-align: center;
}

/**
 * show
**/
.show {
	/* padding: 30px 0; */
}

.product-detail {
	padding: 0 0 50px;
}

.product-detail .thumb-list img {
	display: block;
	margin-bottom: 30px;
	padding-bottom: 1px;
	border: 1px solid transparent;
	opacity: .5;
}

.product-detail .thumb-list .swiper-slide-thumb-active img {
	border-bottom: 1px solid var(--blue);
	opacity: 1;
}

.product-detail .thumb-list img:last-child {
	margin-bottom: 0;
}

.product-detail .thumb-list .swiper-container {
	height: 475px;
}

.product-detail .thumb-pic {
	width: 475px;
	height: 475px;
	margin-left: 20px;
}

.product-detail .thumb-pic img {
	/* max-width: 500px;
	max-height: 500px; */
}

.product-detail .thumb-pic .swiper-button-next,
.product-detail .thumb-pic .swiper-button-prev {
	top: 50%;
}

.product-detail .thumb-pic .swiper-button-prev {
	left: 0;
}

.product-detail .product-content {
	position: relative;
	padding-left: 30px;
	height: 475px;
}

.product-detail .product-title {
	font-size: 30px;
	line-height: 35px;
	padding-bottom: 20px;
	border-bottom: 1px solid var(--border);
	color: var(--blue);
	font-weight: bold;
}

.product-detail .product-parameter {
	/* padding-top: 20px; */
	font-size: 16px;
	color: var(--deep-grey);
	padding-left: 20px;
	line-height: 30px;
}

.product-detail .product-parameter li {
	/* list-style: square; */
	white-space: pre-wrap;
}

.product-detail .product-content .extra-section {
	position: absolute;
	bottom: 0;
}

.product-detail .button-section {
	width: 100%;
	line-height: 30px;
	text-align: center;
	font-size: 20px;
	background: var(--blue);
	color: var(--white);
	padding: 10px 0;
}

.product-detail .list-show-msg {
	width: 100%;
	padding: 20px 0 10px;
}

.product-detail .list-show-msg .item-msg {
	float: left;
	/* width: 33.333333%; */
	display: flex;
	border-left: 1px solid var(--border);
	padding: 0 10px;
}

.product-detail .list-show-msg .item-msg:first-of-type {
	border-left: 0;
	padding-left: 0;
}

.product-detail .list-show-msg .item-msg:last-child {
	padding-right: 0;
}

.product-detail .list-show-msg .item-msg img {
	display: block;
	max-width: 40px;
	max-height: 40px;
}

.product-detail .list-show-msg .item-msg .icon-msg {
	padding-left: 5px;
}

.product-detail .list-show-msg .item-msg .icon-msg span {
	display: block;
	line-height: 20px;
}

.line-title {
	font-size: 24px;
	line-height: 30px;
	color: var(--deep-grey);
	position: relative;
	padding: 30px 0;
	text-align: center;
}

.line-title::after {
	content: "";
	position: absolute;
	display: block;
	width: 100%;
	border-top: 1px solid var(--border);
	padding-top: 1px;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	z-index: 0;
}

.line-title span {
	position: relative;
	display: inline-block;
	background-color: var(--white);
	padding: 0 20px;
	z-index: 1;
}

.overview-area {
	font-size: 28px;
	padding: 0 0 20px;
}

.overview-area p {
	/* line-height: 30px; */
	margin-bottom: 0;
}

.overview-area img {
	max-width: 100%;
}

.related {
	position: relative;
	padding: 30px 0 60px;
}

.related a {
	display: block;
	width: 100%;
	border: 1px solid var(--border);
	padding: 20px;
	background: var(--white);
	border-radius: 10px;
	margin-bottom: 30px;
}

.related a .thumb-img {
	overflow: hidden;
}

.related a .thumb-img img {
	width: 100%;
	max-width: 100%;
	transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}

.related a:hover .thumb-img img {
	transform: scale(1.08, 1.08);
}

.related a .product-name {
	/* padding: 20px; */
	line-height: 30px;
	font-size: 24px;
	color: var(--blue);
	height: 30px;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	text-overflow: ellipsis;
	overflow: hidden;
	-webkit-box-orient: vertical;
	word-wrap: break-word;
	word-break: break-all;
}

.related a:hover .product-name {
	color: var(--blue);
}

.related a .arrow {
	padding: 10px 20px 20px;
}

.related a .arrow img {
	max-width: 20px;
	transition: .5s;
}

.related a:hover .arrow img {
	margin-left: 20px;
}

.related .swiper-button-prev {
	left: -25px;
}

.related .swiper-button-next {
	right: -25px;
}

.related .swiper-button-next,
.related .swiper-button-prev {
	top: 45%;
}

/**
 * page
**/
.page {
	display: table;
	text-align: center;
	margin: 0 auto;
	padding: 30px 0 50px;
}

.page li {
	display: inline-block;
}

.page li a {
	color: var(--deep-grey);
	line-height: 30px;
	padding: 0 8px 5px;
	margin: 0 10px;
	font-size: 18px;
}

.page li:hover a,
.page li.active a {
	border-bottom: 1px solid var(--blue);
}

/**
 * show.html
**/

.arc-title {
	margin: 0;
	margin-bottom: 30px;
	text-align: center;
}

.arc-date {
	font-size: 16px;
	text-align: center;
	color: var(--mid-grey);
}

.arc-content {
	padding: 30px 30px 50px;
	line-height: 30px;
	color: var(--mid-grey);
}

.arc-video iframe{
	border: 0;
	display: block;
	margin: 0 auto 20px;
	width: 60%;
	height: 360px;
}

/**
 * footer
**/
.footer {
	background: var(--black);
	color: #b3b3b3;
}

.footer a {
	color: #b3b3b3;
}

.footer .footer-msg {
	padding: 0 15px 20px;
	background-color: var(--deep-grey);
}

.footer .footer-msg .logo {
	padding: 20px 0;
}

.footer .footer-msg .list-msg {
	color: var(--lighten-grey);
}

.footer .footer-msg .list-msg p {
	margin-bottom: 20px;
}

.footer .footer-msg .list-msg img,
.footer .footer-msg .list-msg span {
	float: left;
	line-height: 20px;
}

.footer .footer-msg .list-msg img {
	/* padding-top: 5px; */
	margin-right: 10px;
}

.footer .footer-msg .list-msg span {
	width: calc(100% - 30px);
}

.footer .footer-msg .list-msg .center-msg p {
	line-height: 30px;
	margin: 0;
	margin-bottom: 10px;
	padding-left: 30%;
}

.footer .footer-msg .list-msg .right-msg {
	line-height: 30px;
}

.footer .footer-msg .list-msg .right-msg .phone {
	font-size: 26px;
	font-weight: 500;
	color: var(--white);
	margin-bottom: 10px;
}

.footer .footer-msg .list-msg .right-msg .time-title {
	text-transform: uppercase;
}

.footer .footer-msg .footer-social {
	padding-top: 20px;
	margin-left: -15px;
}

.footer .footer-msg .footer-social a {
	display: inline-block;
	width: 30px;
	height: 30px;
	line-height: 30px;
	background-color: var(--white);
	text-align: center;
	border-radius: 50%;
	margin-right: 20px;
	position: relative;
}
.footer .footer-msg .footer-social a:hover .qrcode{
	display: block;
}
.footer .footer-msg .footer-social a .qrcode{
	display: none;
	position: absolute;
	top: -110px;
	left: -35px;
	width: 100px;
}

.footer .copyright {
	padding-left: 0;
	line-height: 50px;
}

.footer .footer-menu {
	display: flex;
	justify-content: flex-end;
	padding-right: 0;
	line-height: 50px;
}

.footer .footer-menu a {
	padding-right: 10px;
}

/**
 * mask
 **/
.video-mask {
	position: fixed;
	top: 0;
	left: 0;
	background: rgba(0, 0, 0, .5);
	width: 100%;
	height: 100%;
	z-index: 100;
}

.iframe-panel {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}

#mypage {
	position: fixed;
	top: 0;
	left: 0;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 101;
}
